// JavaScript Template
$(function(){
	//Quick Search
	$('.search-close img').click(function(){
		$('.results-wrapper').hide();
	});
	
	// Category Select
	if($('#CAT_ProductCatalogue option:contains("------")')) {
			$.each($('#CAT_ProductCatalogue option:contains("------")'), function(){$(this).remove(); 		
		});
	}
	
	if($('#CAT_ProductCatalogue:contains("---")')) {
			$.each($('#CAT_ProductCatalogue:contains("---")'), function(){$(this).html($(this).html().replace( /\---/g, '') ); 		
			});
	}
	
	if($('#CAT_ProductCatalogue:contains("Cartridges")')) {
			$.each($('#CAT_ProductCatalogue:contains("Cartridges")'), function(){$(this).html($(this).html().replace( /\Cartridges/g, '') ); 		
			});
	}
	
	$('#CAT_ProductCatalogue option:contains("-- All Catalogs --")').text('Choose a brand');
	
	$('td.productItemNotFound:contains("No products found matching your query.")').html('<p>Sorry there are no cartridge or printer codes found matching your query.</p>  <h3 class="bottom highlight">Having trouble finding your cartridge?</h3> <p class="highlight">Try your printer model number instead or give us a call on  03 9646 1224</p>');
	
	
	$('.browse-options h3').click(function(){
			if($('.browse-options').height() == 46) {
				$('.browse-options').animate({'height':'635px'});	
			}else {
				$('.browse-options').animate({'height':'46px'});	
			}
		});
		
	$('#frog').click(function(){
		$(this).children('div').addClass('alt');  
		altFrog2();
	});
	function altFrog2 (){
		$('#frog div.alt').click(function(){ 
			$(this).addClass('alt2');
	});
		
	}
});


