/* Oscorp JS File */
$(document).ready(function(){
						   
	// Active JS body class
	$('body').addClass('active');
	
	// slideshow code
	$('#slideshow_images').innerfade({
		animationtype: 'fade',
		speed: 'slow',
		timeout: 6000,
		type: 'random',
		containerheight: '225px'
	}); 
	
	// dropdown menu
	$('#nav > ul > li').each(function(){
		var $this=$(this);
		$this.hover(function(){
			$this.addClass('open');
		},function(){
			$this.removeClass('open');
		});
	});
	
	// IE6 PNG Fix
	$.ifixpng('IMG/pixel.gif');
	$('.fixpng').ifixpng();
	
});
