$(document).ready(function(){
	$('#list a').mouseenter(function(){
			$(this).css('color', 'black');
		}).mouseout(function(){
			$(this).removeAttr('style');
	});
	
	$('#main-left a').mouseenter(function(){
			$(this).css('color', 'red');
		}).mouseout(function(){
			$(this).removeAttr('style');
	});
	
	$('.new-window').click(function(e){
		e.preventDefault();
		var href = $(this).attr('href');
		if(href.length > 0){
			window.open(href);
		}
	});
	
	if($('#main-blocks').height() > $('#page-template').height()){
		$('#page-template').height($('#main-blocks').height());
	}
	
	$('#fbpage').append('<iframe src="http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2F%23%21%2Fpages%2FAmazonekcz%2F149721968406535&amp;width=200&amp;colorscheme=light&amp;connections=0&amp;stream=false&amp;header=false&amp;height=427" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:200px; height:427px;" allowTransparency="true"></iframe>');
	
	//fix peak-a-boo bugu
	$('#grid div.clear').css('zoom', '1');
	$('.category-sort').children("*").css('zoom', '1');
});
