jQuery(function($){

$("header nav li ul a").each(function(){
	$(this).width($(this).width());	
});
	$("header nav>ul>li").css('position', 'relative');

    $("header nav li").hover(function() {
     $(this).find("ul").show().css('visibility', 'visible');
	 
    }, function() {
     $(this).find("ul").hide().css('visibility', 'hidden');; 
    });



$(".brands a").mouseover(function(){
$(this).find('img').width($(this).find('img').width()+8);
$(this).find('img').css('margin', '-4px');
});
$(".brands a").mouseout(function(){
$(this).find('img').width($(this).find('img').width()-8);
$(this).find('img').css('margin', '0');
});


$("#main_news h3").pxgradient({
step: 2,
colors: ['#ee484c','#c51d21', '#650f11'],
dir: "y"
});
$("header nav>ul>li:not(.active)>a>span").pxgradient({
step: 2,
colors: ['#7ea08d','#082a15'],
dir: "y"
});
$('header nav>ul>li.active>a>span').pxgradient({
step: 2,
colors: ['#ee484c','#c51d21', '#650f11'],
dir: "y"
});
$('#content h1').pxgradient({
step: 2,
colors: ['#ee484c','#c51d21','#650f11'],
dir: "y"
});
$('#content h2').pxgradient({
step: 2,
colors: ['#ee484c','#c51d21', '#650f11'],
dir: "y"
});
$('#sideLeft nav>ul>li:not(.active)>a>span').pxgradient({
step: 2,
colors: ['#7ea08d','#082a15'],
dir: "y"
});
$('#sideLeft nav>ul>li.active>a>span').pxgradient({
step: 2,
colors: ['#ee484c','#c51d21', '#650f11'],
dir: "y"
});
}); 
