$(document).ready(function(){

	$("span.green, span.blue").hover(function(){
		$(this).css("cursor", "pointer");
		$(this).siblings("a").css(
		{"color" : "#666666", "background" : "url('/images/blue_tab_on.png') no-repeat 0% 0%"});
	}, function(){
		$(this).siblings("a").css(
		{"color" : "#ffffff", "background" : "url('/images/blue_tab_off.png') no-repeat 0% 0%", "cursor" : " "});
	});
	
	$("span.end-span").hover(function(){
		$(this).siblings("a").css({"color" : "#666666", "background" : "url('/images/blue_tab_on_end.png') no-repeat 0% 0%"});
	}, function(){
		$(this).siblings("a").css({"color" : "#ffffff", "background" : "url('/images/blue_tab_off_end.png') no-repeat 0% 0%"});
	});
	
	
	$("a.top-tab").hover(function(){
		$(this).css({"color" : "#666666", "background" : "url('/images/blue_tab_on.png') no-repeat 0% 0%"});
	}, function(){
		$(this).css({"color" : "#ffffff", "background" : "url('/images/blue_tab_off.png') no-repeat 0% 0%"});
	});
	
	$("a.top-tab-end").hover(function(){
		$(this).css({"color" : "#666666", "background" : "url('/images/blue_tab_on_end.png') no-repeat 0% 0%"});
	}, function(){
		$(this).css({"color" : "#ffffff", "background" : "url('/images/blue_tab_off_end.png') no-repeat 0% 0%"});
	});
	
	$("a[href*=.pdf]").click(function(){
	window.open(this.href, 'pdf', 'width=800,height=600,scrollbars=yes,top=100,left=100');
	return false;
	});

});