$(document).ready(function(){
	$("[name=txt_filter]").click(function(){
		if ($(this).val() == $("#defaultSearchString").val()) $(this).val('');
	}).blur(function(){
		if ($(this).val() == '') $(this).val($("#defaultSearchString").val());
	});
	$(".search_select").sexyCombo({
		name:$(this).attr('name'),
		changeCallback:function() {
			var id = parseInt(this.hidden.val());
			if (!isNaN(id) && id) {
				window.location='index.php?c=product&id='+id;
			}
			//window.location='index.php?c=product&id='+this.hidden.val();
		}
	});
	$(".search_form").submit(function(){
		$("[name=txt_filter]").trigger("click");
	});
	
	/*
	 * FIX GALLERY TO MAKE SEARCH BOX STAYS ON RIGHT
	 */
	if ($(".menu_con").length && $(".gallery_con").length) {
		var menuH = $(".menu_con").height()
		var galleryH = $(".gallery_con").height();
		if (galleryH <= menuH ) {
			galleryH = menuH + 50;
			$(".gallery_con").css({
				"height": galleryH+"px"
			});
		}
	}
	
	/*
	 * DOWNLOAD PRESS
	 */
	$("#press").colorbox({innerWidth:"300px", innerHeight:"200px"});
	$("#termsofsue").colorbox({innerWidth:"968px", innerHeight:"550px"});

});
