/*
 * DTRT javascript, portfolio and footer
 */

var out = false;
jQuery(function(){
	jQuery('.thumbnail_box', this ).mouseenter(function() {
		 $('.slide', this).animate({"top": "107px"}, 350);
	 });

	jQuery('.thumbnail_box', this ).mouseleave(function() {
		$('.slide', this).animate({"top": "196px"}, "fast");
	});				
	jQuery('.btnfind', this ).mouseenter(function() {
		document.body.style.cursor = 'pointer';
	});
	jQuery('#map', this ).mouseleave(function() {
		document.body.style.cursor = 'default';
	});
	jQuery('#map', this ).mouseenter(function() {
		document.body.style.cursor = 'pointer';
	});
	jQuery('.btnfind', this ).mouseleave(function() {
		document.body.style.cursor = 'default';
	});
	jQuery('.btnfind', this ).mousedown(function() {	
		if (out==true){
			$('#map').animate({"left": "-616px"}, 350);
			out = false;
		}else{
			$('#map').animate({"left": "0px"}, 350);
			out = true;
		}
	});
	/*jQuery('#map', this ).mousedown(function() {
		$('#map').animate({"left": "-616px"}, 350);
		out = false;
	});*/
});
