$(document).ready(function(){
						   
	$('#callback').click(function(){
		$('#contact-feedback').hide();
		$('#contact-contain #contact-callback').fadeIn('fast');
	});
	
	$('#contact-contain #contact-callback #contact-callback-body .close').click(function(){
		$('#contact-contain #contact-callback').fadeOut('fast');															
	});
	
	
	
	$('#feedback').click(function(){
		$('#contact-callback').hide();
		$('#contact-contain #contact-feedback').fadeIn('fast');
	});
	
	$('#contact-contain #contact-feedback #contact-feedback-body .close').click(function(){
		$('#contact-contain #contact-feedback').fadeOut('fast');															
	});	
	
	
    $("#sector").change(function () {
          var str = "";
          $("#sector option:selected").each(function () {
                str = $(this).text();
              });
          
		  if (str == 'Other'){
			$('#sector-other').fadeIn();  
		  } else {
			$('#sector-other').hide();  
		  }
		  		  
        }).change();

	
	
	
	// FOR USE WITH MANUFACTURER.HTML
	$(function()
	{
		$('#contact-contain #manufacturer-contain #manufacturer-left').jScrollPane({scrollbarWidth:6, scrollbarMargin:10});
	});
	
	
});
