$(function() {
  $("form:not(.filter) :input:visible:enabled:first").focus();
});


function redirectCountry()
{
	if ($('#stockists_country_text option:selected').val() != "") 
	{
		//window.location.replace('/' + $('#stockists_country_text option:selected').val() + '/');
		alert('The Country selected is: ' + $('#stockists_country_text option:selected').val());
	}
}

function goToStockistList(url)
{
	var t;
	var s;
	var c;
	//Specify Country Start --- Added 21/10/2011 -Sergio Medina
	if ($('#stockists_country_text option:selected').val() != "") 
	{
		//ct = $('#stockists_country_text option:selected').val();
		t = $('#stockists_country_text option:selected').val();
	} else {
		t = "all";
	}
	//Specify Country End --- Added 21/10/2011 -Sergio Medina
	
	if ($('#stockists_state_region_text').val() == "") {
		s = "all";
	} else {
		s = $('#stockists_state_region_text').val().replace(/ /g,'-');
	}
	
	if ($('#stockists_city_suburb_text').val() == "") {
		c = "all";
	} else {
		c = $('#stockists_city_suburb_text').val().replace(/ /g,'-');
	}
	window.location.replace(url + s + "/" + c + "?t=" + t); //Added ?t=t So the country can be read in action.class.php --- Added 21/10/2011 - Sergio Medina
}

$(document).ready(function() {
	
	$('.img_thumb_1').hover(function() {
		$('.img_big_1').show();
		$('.img_big_2').hide();
		$('.img_big_3').hide();
	});
	$('.img_thumb_2').hover(function() {
		$('.img_big_1').hide();
		$('.img_big_2').show();
		$('.img_big_3').hide();
	});
	$('.img_thumb_3').hover(function() {
		$('.img_big_1').hide();
		$('.img_big_2').hide();
		$('.img_big_3').show();
	});
	
	$('.btn_color').click(function() {
		
		var id = $(this).attr('id');
		
		$('.color_select>div').each(function(index) {
		    if ( id == index ) 
		    {
		    	$('#catalogue_gallery_' + id).show();
		    }
		    else
		    {
		    	$('#catalogue_gallery_' + index).hide();
		    }
		});
		
		$('.img_big_1').show();
		$('.img_big_2').hide();
		$('.img_big_3').hide();
	});
});
