var theme = 
{
	heightFix: function()
	{
		$(".master-wrapper-side").css("height", ($(".master-wrapper-cph").outerHeight()-20) + "px");
	},
	
	ieFix : function()
	{
		$(".header-links li:last-child, .footer-links li:last-child, .cat-nav li:last-child").css("border-right", "0");
		
	},
	
	sortFix: function()
	{
		if ($(".category-page .product-filters").size() == 0)
		{
			$(".category-page .product-sorting").css({"top":"-15px", "color":"#000"});
		};		
	}
};

$(document).ready(function()
{
	setTimeout("theme.heightFix();", 120);
	setInterval("theme.heightFix();", 1500);
	
	if ($.browser.msie && $.browser.version < 9)
	{
		theme.ieFix();
	};
	
	theme.sortFix();
});	
