// SPECIAL FEATURES
$(document).ready(function(){
	$("#bigpic li").css({ opacity: 0 });
	$("a.sf1").hover(function() {
		$("#bp1").stop().animate({"opacity": "1"}, 40);
	},
	function() {
		$("#bp1").stop().animate({"opacity": "0"}, 400);
	});
	$("a.sf2").hover(function() {
		$("#bp2").stop().animate({"opacity": "1"}, 40);
	},
	function() {
		$("#bp2").stop().animate({"opacity": "0"}, 400);
	});
	$("a.sf3").hover(function() {
		$("#bp3").stop().animate({"opacity": "1"}, 40);
	},
	function() {
		$("#bp3").stop().animate({"opacity": "0"}, 400);
	});
	$("a.sf4").hover(function() {
		$("#bp4").stop().animate({"opacity": "1"}, 40);
	},
	function() {
		$("#bp4").stop().animate({"opacity": "0"}, 400);
	});
});

// BACK BUTTON
$(document).ready(function(){
	$("#goback ul li a img").css({
		opacity: 0
	});
	$("#goback ul li a img").hover(function() {
		$(this).stop().animate({"opacity": "1"}, 40);
	},
	function() {
		$(this).stop().animate({"opacity": "0"}, 400);
	});
});

// HOME BUTTONS
$(document).ready(function(){
	$("#goback ul li.h_about_me img").css({
		opacity: 0
	});
	$("#goback ul li.h_portfolio img").css({
		opacity: 0
	});
	$("#goback ul li.h_features img").css({
		opacity: 0
	});
	$("#goback ul li.h_contact_me img").css({
		opacity: 0
	});
	$("a.na1").frameAnimation({
		delay:80,
		repeat: 1,
		mouseOut: true
	});	
	$("a.na2").frameAnimation({
		delay:80,
		repeat: 1,
		mouseOut: true
	});
	$("a.na3").frameAnimation({
		delay:80,
		repeat: 1,
		mouseOut: true
	});
	$("a.na4").frameAnimation({
		delay:80,
		repeat: 3,
		mouseOut: false
	});
});

// HOME BUTTON LABELS
$(document).ready(function(){
	$("a.na1").hover(function() {
		$("#gb1 img").stop().animate({"opacity": "1"}, 40);
	},
	function() {
		$("#gb1 img").stop().animate({"opacity": "0"}, 400);
	});	
	$("a.na2").hover(function() {
		$("#gb2 img").stop().animate({"opacity": "1"}, 40);
	},
	function() {
		$("#gb2 img").stop().animate({"opacity": "0"}, 400);
	});
	$("a.na3").hover(function() {
		$("#gb3 img").stop().animate({"opacity": "1"}, 40);
	},
	function() {
		$("#gb3 img").stop().animate({"opacity": "0"}, 400);
	});
	$("a.na4").hover(function() {
		$("#gb4 img").stop().animate({"opacity": "1"}, 40);
	},
	function() {
		$("#gb4 img").stop().animate({"opacity": "0"}, 400);
	});
// PORTFOLIO
	$("ul.portfolio li").css({ opacity: 1 });
	$("ul.portfolio li").hover(function() {
		$(this).stop().animate({"opacity": "0.5"}, 40);
	},
	function() {
		$(this).stop().animate({"opacity": "1"}, 400);
	});
// VIDEO BOX
$(document).ready(function(){
	$(".vidbox").jqvideobox({
		'width' : 480,
		'height': 360,
		'getimage': false,
		'navigation': false
	});
});
// LIGHTBOX
	$('ul.gallery a').lightBox();
});
