/*****************************
* Penwoodtech
* locdo@penwoodtech.com
******************************/

$(document).ready(function(){	
	$('.imgproduct, .companylogo').each(function(i,e){
		var parent = $(e).closest('div.pnlparent');
		$(e).position({
			my: "center center",
			at: "center center",
			of: parent
		});
		$(parent).css('visibility','visible');
	});
	
	/* for click on product image - IE 7 */
	$('div.pnlparent').each(function(i,e){
		var href = $(this).find('a:first').attr('href') || '';
		if(href!=''){
			var redirect = function(){ window.location = href; }
			$(this).find('.imgproduct, .companylogo')
			.mouseover(function(){ $(this).css('cursor','pointer'); })
			.mouseout(function(){ $(this).css('cursor','none'); })
			.click(redirect);			
		}
	});
});

