// JavaScript Document
$(document).ready(function() {

	$(function(){
		
		
		$(".tiptip").tipTip({
								   		delay: 400,
										custom: true,
										element_holder : ".large_grey_box .content",
										defaultPosition : "right"
								   
								   });
								   
								   
								   
		$(".tiptip_cases").tipTip({
								   		delay: 400,
										custom: true,
										element_holder : ".cases_div",
										defaultPosition : "right"
								   
								   });
								   
	});
	
	
	
	
	/* $('.large_grey_box .content').bind("mouseleave",function() { 
													
													if($('#tiptip_holder').text()!='')
													{
														$('.header ul li').css('z-index', '100');
														$('#tiptip_holder').stop(true,true).fadeOut()
													}
																		
																		} );
																		
	$('.header_wrapper').bind("mouseover",function() { 
	
		if($('#tiptip_holder').text()!='' && $('#tiptip_holder').css('display') == 'block')
		{
			$('.header ul li').css('z-index', '100');
			$('#tiptip_holder').stop(true,true).fadeOut()
		}
	} );
	$('.home_tb').bind("mouseover",function() { 
	
		if($('#tiptip_holder').text()!='' && $('#tiptip_holder').css('display') == 'block')
		{
			$('.header ul li').css('z-index', '100');
			$('#tiptip_holder').stop(true,true).fadeOut()
		}
	} );

	
	$('.cases_div').bind("mouseleave",function() { 
													
													if($('#tiptip_holder').text()!='')
													{
														$('.header ul li').css('z-index', '100');
														$('#tiptip_holder').stop(true,true).fadeOut()
													}
																		
																		} ); */																	
																		

});
