(function($)
{
	
	
	//CYCLE PLUGIN
	if (jQuery().jcarousel)
	{
		var slider = $('#slider ul')
    	slider.jcarousel({
    		wrap: 'circular',
    		scroll: 1,
    		animation:'slow'
   		});
	};
	
	//COLORBOX
	if(jQuery().colorbox)
	{
		var certificates = $('a[rel="group"]')
		
		certificates.colorbox({opacity:0.3});
	
	};	
	//CONTACT FORM
	if(jQuery().validate)
	{
		var Contact = $('form[role="form"]')
		
		Contact.validate({
		   validClass: "success",
		   errorElement: "span",
		   rules: {
		     name: {
		       required: true,
		       minlength: 5
		     },
		     email: {
		       required: true,
		       email: true
		     },
		     message: {
		       required: true,
		       minlength: 15
		     }
		   },
		   messages: {
		     name: {
		       required: "Please write your name",
		       minlength: jQuery.format("At least {0} characters required!")
		     },
		     email: {
		       required: "Please write your Email",
		       email: "Your email address must be in the format of name@domain.com"
		     },
		     message: {
		       required: "Please write your message",
		       minlength: jQuery.format("At least {0} characters required!")
		     }
		   }
	   });	
	};
	
	//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);




