(function($)
{
	//ASSIGNING VARIABLES
	var Slider = $('#slider')
		ColorBox = $('a[rel="gallery"],a.frame-img')
		Tables = $('#men,#women,#green-fees,#rental-fees,#lesson-fees')
		TableClicks = $('a[href="#men"],a[href="#women"],a[href="#green-fees"],a[href="#rental-fees"],a[href="#lesson-fees"]')
		CourseMarkers = $('#markers a')
		VirtualNoJs =$('#krpanoDIV p')
		Contact = $('#contact form')
		
	
	
	//RATINGS TABLES
	Tables.hide();
	
	TableClicks.click(function(){
	
		var ID = $(this).attr('href')
			
			
		if (!$(ID).is(':visible')){
			Tables.slideUp();
			$('div'+ID).slideDown();	
		}else{
			$('div'+ID).slideUp();
		}
		return false;	
	
	});
	
	
	//SLIDER
	Slider.cycle();

	
	//COLORBOX
	ColorBox.colorbox({opacity:.5,width:609,maxWidth:'650px'});
	
	var redSeaOpen = $('a[href^="http://residencedescascades.com"]');
	redSeaOpen.colorbox({iframe:true,width:600,height:800,opacity:.5});
	
	//CHAMPIONSHIP COURSE
	CourseMarkers.click(function(){
	
		var ID = $(this).attr('href').split('#')
			Href = ID[0]+" "+"div#"+ID[1]
		
		$.colorbox({href:Href,maxWidth:900,opacity:.5,Height:'100%'});
		
		return false;	
	
	});
	
	//VIRTUAL
	VirtualNoJs.hide();
	
	//CONTACT FORM
	if($('body').attr('id') == 'contact'){
		Contact.validate({
		   validClass: "success",
		   errorElement: "span"
	   });
	};
	
	
	//IE6
	if ($('html').hasClass('ie6')){
			$('body').prepend('<div style="width:960px;padding:20px;margin:0 auto;background:#FEEFB3;color:#9F6000;">You are using a very old browser (Internet Explorer 6) to be able to enjoy our web site to the max please update your browser <a href="http://ie.microsoft.com/testdrive/" title="Internet Explorer 9">Here</a> or download one of the following browsers <a href="http://www.mozilla.com/en-US/firefox/personal.html" title="Firefox">Firefox</a> ,<a href="http://www.google.com/chrome" title="Google Chrome">Google Chrome</a>,<a href="http://www.apple.com/safari/" title="Safari">Safari</a> ,<a href="http://www.opera.com/" title="Opera">Opera</a>.</div>');
	};
	
})(jQuery);




