/* init */

$(document).ready(function(){
	
	var keyNode;
	
	 /* ---- ListItem.ascx ---- */
	keyNode = $(".li_wrapper");
	if(keyNode.length > 0)
	{	
		 //hover code
		 keyNode.hover(
			function (){
				$(this).parent().addClass( "li_wrapper_over" );
			}, 
			function () {
				$(this).parent().removeClass( "li_wrapper_over" );
			}
		);
		
		//click code
		keyNode.click(function(){
			window.location.href = $(this).attr("jqplink");
		});
	}
	
	 /* ---- RelatedProductListItem.ascx ---- */
	keyNode = $(".li_wrapper");
	if(keyNode.length > 0)
	{	
		 //hover code
		 keyNode.hover(
			function (){
		 $(this).parent().addClass("li_wrapper_over");
			}, 
			function () {
			$(this).parent().removeClass("li_wrapper_over");
			}
		);
		
		//click code
		keyNode.click(function(){
			window.location.href = $(this).attr("jqplink");
		});
	}
});