// JavaScript Document
$(document).ready(function(){

	//Include Files
	function include(file)
	{
	
	  var script  = document.createElement('script');
	  script.src  = file;
	  script.type = 'text/javascript';
	  script.defer = true;
	
	  document.getElementsByTagName('head').item(0).appendChild(script);
	
	}
	/* File Path*/
	include('/Portals/0/js/our_products.js');
	include('/Portals/0/js/banner.js');
	include('/Portals/0/js/new_offers.js'); 
	include('/Portals/0/js/pinless_banner.js'); 

 //Tabs Scritps 
	
	$('.show_hide_tabs').mouseenter(function(){
	
		$(this).addClass('active');

	$('.show_hide_tabs.active .tabs li').click(function(){
		$('.show_hide_tabs.active .tabs li').removeClass('active');
		$(this).addClass('active');
		var $get_tab_id = $(this).attr('id');
		$('.show_hide_tabs.active .show_hide_tabs_data').css('display','none');
		$('.show_hide_tabs.active .show_hide_tabs_data.'+$get_tab_id).css('display','block');
	});

	});

	$('.show_hide_tabs').mouseleave(function(){
	
		$(this).removeClass('active');
	
	});


	$('.customer_login').mouseenter(function(){
		$('.data').css('display','block');	
	});
	$('.customer_login').mouseleave(function(){
		$('.data').css('display','none');	
	});
	
	$('img.searchBtn').click(function(){
		var Searchval=$('input.searchTxtBox').val();
		window.location = '/SearchResults.aspx?Search='+Searchval;
	});
});

