// JavaScript Document

$(document).ready(function(){
	if($('.h-search .s-txt').length){
		$('.h-search .s-txt').toggleVal();
	}
	if($('.where-to-buy').length){
		$('.where-to-buy').change(function(){
			document.location.replace($(this).val());
		});
	}
	if($('.i-contacts .contacts_map').length){
		$('.i-contacts .contacts_map').hover(
			function () {
				$(this).animate({width:'450px', height:'350px'},300);
				$(this).find('.contacts_map_cont').animate({marginTop:0,marginLeft:0},300);
			}, 
			function () {
				$(this).animate({width:'340px', height:'170px'},300);
				$(this).find('.contacts_map_cont').animate({marginTop:-90,marginLeft:-55},300);
			}
		);
	}
	if($('#resume_form').length){
		$('#resume_form').resume();
	}
	if($('#contacts_form').length){
		$('#contacts_form').contacts();
	}
	if($('.h-search form input[type=button]').length){
		$('.h-search form input[type=button]').click(function() {
			$(this).parents('form').submit();
		});
	}
	if($('form .search input[type=button]').length){
		$('form .search input[type=button]').click(function() {
			$(this).parents('form').submit();
		});
	}
});
