var tabs_status = new Array();
$(document).ready(function() {
						   
						   
	//settings
	var opacity = 0.7, toOpacity = 1, duration = 250;
	var opacity2 = 1, toOpacity2 = 0.7, duration = 250;
	//set opacity ASAP and events
	$('.opacity').css('opacity',opacity).hover(function() {
			$(this).animate({minWidth: "150px",'opacity': toOpacity},{'duration': 250, queue: false});
		}, function() {
			$(this).animate({minWidth: "50px",'opacity': opacity},{'duration': 250, queue: false});
		}
	);
	
	$('.opacity2').css('opacity',opacity).hover(function() {
			$(this).animate({marginLeft: "10px",'opacity': toOpacity},{'duration': 250});
		}, function() {
			$(this).animate({marginLeft: "0px",'opacity': opacity},{'duration': 250});
		}
	);
	
$("img.imagestyle").hover(function() {
$(this).animate({borderColor: '#0099ff'},600);
},function() {
$(this).animate({borderColor: '#444'},400);
});

$("#nav li").hover(function() {
$(this).animate({borderBottomColor: '#c70079'},600);
},function() {
$(this).animate({borderBottomColor: '#0099ff'},400);
});

$("#subfooter li a").hover(function() {
$(this).animate({borderBottomColor: '#0099ff', color: '#fff'},600);
},function() {
$(this).animate({borderBottomColor: '#c70079',color: '#777'},400);
});

$("#footer a").hover(function() {
$(this).animate({borderBottomColor: '#0099ff', color: '#0099ff'},600);
},function() {
$(this).animate({borderBottomColor: '#333',color: '#ff0099'},400);
});

$("#about h4 a").hover(function() {
$(this).animate({borderBottomColor: '#0099ff', color: '#0099ff'},600);
},function() {
$(this).animate({borderBottomColor: '#555',color: '#ccc'},400);
});


$("input").hover(function() {
$(this).animate({borderColor: '#0099ff'},600);
},function() {
$(this).animate({borderColor: '#444'},400);
});

$("input.button").hover(function() {
$(this).animate({borderColor: '#0099ff'},600);
},function() {
$(this).animate({borderColor: '#ef1675'},400);
});

$("textarea").hover(function() {
$(this).animate({borderColor: '#0099ff'},600);
},function() {
$(this).animate({borderColor: '#444'},400);
});




	
});


