
/*

$(function() {
	$("#prod_details_tabs > ul").tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
	//$("#prod_details_tabs > ul").tabs();
	$('a.magnify').lightBox({fixedNavigation:true});
});

*/


$(document).ready(function(){
	
	//$("#prod_details_tabs > ul").tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
	$("#prod_details_tabs > ul").tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
	
	
	//$("#prod_details_tabs > ul").tabs();
	
	$('a.magnify').lightBox({fixedNavigation:true});
	
	$('.prod_thumb').click(function(){
		var thumb_url = $(this).attr('src');
		var main_url = $('#mainimage').attr('src');
		$('#mainimage').attr('src',thumb_url.replace('_thumb.jpg','.jpg'));
		$(this).attr('src',main_url.replace('.jpg','_thumb.jpg'))
	});
	
	
	//http://www.grabalaptop.com/images/products/1233073791_pink_thumb.jpg
	//http://www.grabalaptop.com/images/products/1233073791_pink.jpg
});









/*

function showimage(showimg_thumb, showimg_main, thumb_id, orig_thumb, orig_main) { 
	$('#mainimage').attr('src',showimg_main);
	$('#'+thumb_id).attr('src',orig_thumb);
	$('#'+thumb_id).removeAttr('onclick');
	$('#'+thumb_id).attr('onclick') = function(){ alert("test2"); };
//	$('#'+thumb_id).attr('onclick',"showimage('"+orig_thumb+"','"+orig_main+"','"+thumb_id+"','"+showimg_thumb+"','"+showimg_main+"');");
	
	//showimage('/images/products/1233073854_pink2.jpg','thumb_1','/images/products/1233073791_pink.jpg','/images/products/1233073791_pink_thumb.jpg');
}

*/
