// JavaScript Document


	
$(function(){
/* jquery actions on document load  */

	   

// Regular popup
		$('a.popup').click(function(){ 
				window.open(this.href, 
							'_blank',						'scrollbars=yes,resizable=yes,width=700,height=650');
				return false;
		});
		
// smaller window popup		
		$('a.popupmovie').click(function(){ 
				window.open(this.href, 
				'_blank',
				'scrollbars=yes,resizable=yes,width=600,height=400');
				return false;
		});
		
// image links fade when hovered		
		$('a>img').hover(
				function(){ $(this).css('opacity', 0.7);}, 
				function(){ $(this).css('opacity', 1.0);}
				);	
		
// add sfhover class to hovered navbar items in first ul ... NEEDED FOR IE6 BEHAVIOR
		$('#nav ul>li').hover(
				function(){
						$('#menuwrapper ul.menu>li').removeClass('sfhover');
						$(this).addClass('sfhover');}, 
				function(){ $(this).removeClass('sfhover');}
				);	
	
	$('.rightcol').corner('10px');
	
});