var $ = jQuery;

$(document).ready(function(){
	$("a[rel*=popup]").click(function(){
		var href = $(this).attr("href");
	//	alert(href);return false;
		window.open(href,'page','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=1000,height=600,left=20,top=20,titlebar=no')
		return false;
	});
	
	$("a[rel*=external]").click(function(){
		var href = $(this).attr("href");
		window.open(href);
		return false;
	});
	
	
	if($("#gross").length > 0){
		$("a",".contentbodyStyleRight").click(function(){
			var id = $(this).attr("href");
			$(".dropdown").hide();		
			$(id).show();
			return false;
		});
	}
	
});
