/*$(document).ready(function(){
 $('area').mouseenter(function(){
			var w_id = $(this).attr('id').toString();
			var p_id = w_id.substr(1);
			$('#'+p_id).parent().attr('class', p_id);
});
													 
													 
	$('#arrow').toggle(
		function () {
			var w = $('#header').width();
			var b = $('#scrollable').width() + 640;
			var l = w - b;
			
			$('#scrollable').animate({left: l + 'px'}, {duration: 3000, queue: false});
			$('#select_note').animate({left: l + 500 + 'px'}, {duration: 5000, queue: false});
			$('#arrow').attr('class', 'leftw');
		},
		function () {
			$('#scrollable').animate({left: 0 + 'px'}, {duration: 3000, queue: false});
			$('#select_note').animate({left: 500 + 'px'}, {duration: 5000, queue: false});
			$('#arrow').attr('class', 'rightw');
		}
	);

	var isDiv=0;
	$("#block").click(function(){
		isDiv=1;
		$("#block").attr("class","curr");
	});
	$('body').click(function(){
		if(isDiv==0){
			$("#block").attr("class","def");
		}
		isDiv=0;
	});

$('#full_photo').mouseleave(function(event){
		var obj = $(event.relatedTarget);
		if(obj.hasClass('hz') == true || obj.parent().hasClass('hz') == true) {			
			event.preventDefault();
			event.stopImmediatePropagation();
		}	 else {
			$('#full_photo').attr('class', 'def');
		}
	});
	
});*/


