$(function(){

//nav
$('#main_nav .li_level01').hover(function(){
		$(this).addClass("hover");
		$('.sub_nav',this).css('visibility', 'visible');  
}, function(){
		$(this).removeClass('hover');
		$('.sub_nav',this).css('visibility', 'hidden');  
});
//end nav

//inputur	Search
$('.search_field').focus(function(){ 
	if($(this).val() == $(this).attr('defaultValue'))
	{
		$(this).val('');
	}
});

$('.search_field').blur(function(){
	if($(this).val() == '')
	{
		$(this).val($(this).attr('defaultValue'));
	} 
});

//inputur	Newsletter
$('.newsletterBody input[type=text]').focus(function(){ 
	if($(this).val() == $(this).attr('defaultValue'))
	{
		$(this).css('color', '#333').val('');
	}
});

$('.newsletterBody input[type=text]').blur(function(){
	if($(this).val() == '')
	{
		$(this).val($(this).css('color', '#616161').attr('defaultValue'));
	} 
});


//Banner Home
$("#banner_home .slidetabs").tabs(".slides_wrapper ul li", {
	effect: 'fade',
	rotate: true
}).slideshow({autoplay:true, interval:'4000', clickable: false});


$("#banner_home").hover(
  function () {
    $('.controls', this).animate({
						marginBottom: "0"												
				},200);
  }, 
  function () {
    $('.controls', this).animate({
						marginBottom: "-40px"												
				},200);
  }
);



//home_promo_listing
$('.home_promo_listing li, .home_latest_listing li').click(function() {
		var href = $(this).parent().find('a.prod_title').attr('href');
		if(href) {window.location = href;}
});


//Tabs prod_page
$("ul.tabControls").tabs("div.tabsBody > div.tabBox");

//Related products
//$(".related_items").scrollable({
//															 next: "a.next",
//															 prev: "a.prev"
//															 });
//$(".accesories_listing li:eq(4), .accesories_listing li:eq(9)").addClass('li_last');


});

