/* search */
if(document.getElementById("q").value == "") 
	document.getElementById("q").setAttribute('style', 'background: url(/wp-content/themes/csstutorial/images/txt-searchks.gif) 10px center no-repeat !important');
	
document.getElementById("q").onblur = function(){  
	if (document.getElementById("q").value == '')
		document.getElementById("q").setAttribute('style', 'background: url(/wp-content/themes/csstutorial/images/txt-searchks.gif) 10px center no-repeat !important');
};  				  			
document.getElementById("q").onfocus = function(){  
	document.getElementById("q").setAttribute('style', 'background: none !important');
};

$(document).ready(function(){	

	$('#forumposts').load("/wp-content/themes/csstutorial/getforum.php");
	
	/* dropdown */
	$("#network").click(function () {
		if ($("div#networkdropdown").is(":hidden")) {
			$("#networkdropdown").fadeIn('fast');
			$("#network").toggleClass("active"); 
		}
		else {
			$("div#networkdropdown").fadeOut('fast');
			$("#network").toggleClass("active"); }
	});
	$("div#networkdropdown").hover( function() {},
		function() { 
			$("div#networkdropdown").fadeOut('fast');
			$("#network").toggleClass("active");
	}); 
	
	/* go to top */
	$('a[href=#top]').click(function(){
        $('html, body').animate({scrollTop:0}, 'slow');
        return false;
    });
    
    /* lightbox */
    /* height = height of video + 30px */
    $("a.pop800x600").fancybox({ 
    	'width': 800,'height': 630,
		'type': 'iframe','margin': 0,'autoScale': false,'scrolling':'no'
	});
});
