$(document).ready(function(){
	
	$('.left-menu-item').live('click',function(){
		
		if ( $(this).next().is(':hidden') ) $(this).next().slideDown(200);
		else $(this).next().slideUp(200);
		
	});
	
	$('.pr-works-link').live('click',function(){
		
		$('body').scrollTo($('#gallery-works'),{axis:'y',duration:500});
		
	});
	
	$('.pr-order-link').live('click',function(){
		
		$('body').scrollTo($('#order-form'),{axis:'y',duration:500});
		
	});
	
	$('.view-link').live('click',function(){
		
		var thisID = $(this).attr('id');
		if ( $('#' + thisID + '-open').is(':hidden') )
		{
			$('#' + thisID + '-open').slideDown(200);
			$(this).html('<strong style="color: #ff0000; cursor: pointer;">Cкрыть текст</strong>');
		}
		else
		{
			$('#' + thisID + '-open').slideUp(200);
			$(this).html('<strong style="color: #ff0000; cursor: pointer; text-decoration: underline;">Читать все</strong>');
		}
		
	});
	
});
