
$(document).ready(function(){
						   
	// Live Help Functions
	
	function tracker() {
		var script = document.createElement('script');
		script.type="text/javascript";
		var src = "http://wizard.gb.com/livezilla/server.php?request=track&output=jcrpt&cf0=V2l6YXJkIElDVA__&nse="+Math.random();
		setTimeout(function() {
					script.src=src;
					$('#LiveHelp').append(script)}
		,1);
	};
						   
	$("#LiveHelp").append(
		"<img src='http://wizard.gb.com/livezilla/image.php?id=05&amp;hg=Pw__&amp;intgroup=U3VwcG9ydA==' width='191' height='69' border='0' alt='Live Support' title=''><noscript><a href='http://wizard.gb.com/livezilla/chat.php?intgroup=U3VwcG9ydA==&amp;hg=Pw__&amp;cf0=V2l6YXJkIElDVA__' target='_blank'>Start Live Support</a></noscript>"
	);
	
	tracker();
	
	$("#LiveHelp").click(function(){
		window.open('http://wizard.gb.com/livezilla/chat.php?intgroup=U3VwcG9ydA==&amp;hg=Pw__&amp;cf0=V2l6YXJkIElDVA__','','width=590,height=580,left=0,top=0,resizable=yes,menubar=no,location=no,status=yes,scrollbars=yes');					  
	});



	// Show / Hide Functions
	
	$(".details_bullet").click(function(){
			$(".hidden").css('margin-left','-999em');
			
			var div_id = $(this).attr("id")+"_content";
			$("#"+div_id).css('margin-left','0px');
			
			$(".details_bullet").css('color','#FFF');
			$(this).css('color','#0C0D61');
	});
	
	$(".details_bullet").hover(
		function(){
			var color = $(this).css('color');
			if(color == '#fff' || color =='rgb(255, 255, 255)') {
				$(this).css('color','#f90');
			}
		},
		function(){
			var color = $(this).css('color');
			if(color == '#f90' || color =='rgb(255, 153, 0)') {
				$(this).css('color','#fff');
			}
		}
	);

});


function getyear() {
	return new Date().getFullYear();	
}
