﻿jQuery(document).ready(function($){

	fadeImage('ul.productList img');

});


/* -------------------------------------------------------------------
		fadeImage
--------------------------------------------------------------------*/
function fadeImage(targetID) {

	$(targetID).hover(function(){
		$(this).stop();
		$(this).fadeTo(250, 0.5);
	},
	function(){
		$(this).stop();
		$(this).fadeTo(300, 1);
	});

}

/* -------------------------------------------------------------------
// popup window
--------------------------------------------------------------------*/
function popup(url,windowname,width,height) {
	var features="location=no, menubar=no, status=yes, scrollbars=no, resizable=yes, toolbar=no";
	if (width) {
		if (window.screen.width > width)
		features+=", left="+(window.screen.width-width)/2;
		else width=window.screen.width;
		features+=", width="+width;
	}
 	if (height) {
		if (window.screen.height > height)
		features+=", top="+(window.screen.height-height)/2;
		else height=window.screen.height;
		features+=", height="+height;
	}
	var new_window = window.open(url,windowname,features);
	new_window.focus();
}

function popup_close (){
	window.close();
}
