$(document).ready(function(){
	// Bind dialog anchors
	$('a.dialog').bind('click', function(){
		var url = $(this).attr('href');
		var width = 700;
		var height = 500;
		if ($(this).hasClass('dialogProductPhotos')) {
			width = 700;
			height = 410;
		} else if ($(this).hasClass('dialogSwatchWide')) {
			width = 650;
			height = 370;						
		} else if ($(this).hasClass('dialogSwatch')) {
			width = 340;
			height = 370;										
		}
		var dialog = window.open(url, 'dialog', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=' + width + ',height=' + height + ',screenX=100,screenY=100,top=100,left=100');
		return false;
	});
});