// jquery config
$(function(){





// easy scroll to page top
$('.pagetop a').click(function(){
$('#header').ScrollTo(1000, 'easeout');
return false;
});

// easy scroll
$('.jump a').click(function(){
$($(this).attr('href')).ScrollTo(1000, 'easeout');
return false;
});


// jump top selected page
$('.search').change(function(){
	var jumpurl = $($(this).children().children("option:selected")).attr("title");
	$($(this).parent().parent().parent("form")).attr({action:jumpurl});
	$($(this).next("input")).removeAttr("disabled");
	$($(this).children(".noselect")).remove();
	return false;
});



// btn_products
$('#btn_products').ready(function(){$('#btn_products a,h3').show("slow");});
$('#btn_products_index').ready(function(){$('#btn_products_index a').show("slow");});


$('#btn_products_index a,#btn_products a').hover(
function(){$(this).animate({ width:360 },"slow");},
function(){$(this).animate({ width:310 },"fast");}
);






});
