/**
 * @author Ivor
 */

 $(document).ready( function () {
 
	 // Product info tabs
	 $('a.tablink').click( function() { return switchTab(this.hash); });
	 
	    $('.nobg').cycle({
			fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		});
	 
	 
 });
 
 
 function checkEmail(sEmail) {
 if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(sEmail)){
	return (true)
	} else {
	return false;
	}
 
 }
 
 
 function switchTab(sSelected) {
	 sSelected = sSelected.replace('#','');
	 
	 // Hide all tabs
	 $('div.tab').hide();
	 
	 // Show selected tab
	 $('#'+sSelected).show();
	 
	 // Remove active links
	 $('.tablink').removeClass('tablink_active');
	 
	 // Mark link
	 $('#link_'+sSelected).addClass('tablink_active');
	 
	 
	 return false;
 }

