$(document).ready(function() {
	
	
	$(".opac").fadeTo("slow", 0.8);
$(".opac").hover(function(){
$(this).fadeTo("slow", 1.0);
$(".opac2").fadeTo("slow", 0.8);
},function(){
$(this).fadeTo("slow", 0.8);
$(".opac2").fadeTo("slow", 1);

});

$('.opac, .opac2').click(function() {
   $("#nameid").focus();

});

$('#social a').hover(function(){
$(this).find("span").stop().fadeTo('normal', 0 , function() {
$(this).hide() //Hide the image after fade
});
},
function(){
$(this).find("span").stop().fadeTo('normal', 1).show();
});
/* vp codie */
$('.slider').innerfade({ speed: 'slow', timeout: 5000, type: 'sequence', containerheight: '1.5em' });
});

