$(document).ready(function() {
	$('a.p_lb').jqzoom();
	//$('a.p_lb').lightBox();
	$('a.p_lb_open').lightBox();
	$('a.m_lb_open').click(function() {
		//var new_thumb = $("a.p_lb img").attr("src").replace("/medium/","/thumbs/");
		var new_main = $(this).find("img").attr("src").replace("/thumbs/","/medium/");
		var new_main_big = new_main.replace("/medium/","/");
		//$(this).find("img").attr("src",new_thumb);
		$("a.p_lb").attr("href",new_main_big).find("img").attr("src",new_main);
		$("a.p_lb_open").attr("href",new_main_big).find("img").attr("src",new_main);
	});
	
	bind_group_switch();
});

function bind_group_switch() {
	$('#pg_wrap select.ps1').change(function() {
		product_group_switch();										 
	});
}

function product_group_switch() {
	var pg = {}
	$('#pg_wrap select.group_field').each(function() {
		pg[$(this).attr("class").split(" ")[0].substr(1)] = $(this).val();											   
	});
	
	$.ajax({
	   type: "POST",
	   url: '/includes/ajax_functions.php',
	   data: constructQueryString('get_grouped_product_url',$('#pg_wrap input.GroupID').val(), $.toJSON(pg)),
	   dataType: "html",
	   success: function(result) {
			window.location.href='/products/' + result;
	   }
	 });
}