 $(document).ready(function(){


    $("span.title").click(function () { 
      
	  
	  	/*obj = $(this).parent(".part").children(".content").css("display", "block");*/
		if( $(this).parent(".part").children("div").attr("class") == "content" )
		{
			$(this).parent(".part").children("div").attr("class", "content-opened");

		}
		else if( $(this).parent(".part").children("div").attr("class") == "content-opened" )
		{
			$(this).parent(".part").children("div").attr("class", "content");
		}
	   
    });
	

	/*$(function() {*/
		$("a[href$='jpg']").lightBox({fixedNavigation:true});
	/*});*/	


$('#orderbutton_individual').click(function(){
	$('#div_orderform').html('<iframe scrolling="no" style=\"width: 510px; height: 600px; border-style:none\" src=\"http://www.karlson-tourism.ru/orderform_individual.php\"></iframe><div align=\"center\"><a href=\"#\" class=\"close\">Закрыть окно</a></div>');
});

$('.orderbutton').click(function(){
	var ordertitle=$(this).attr('ordertitle');
	ordertitle=ordertitle.replace("&","{{and}}");
	$('#div_orderform').html('<iframe scrolling="no" style=\"width: 510px; height: 600px; border-style:none\" src=\"http://www.karlson-tourism.ru/orderform.php?ordertitle='+ordertitle+'\"></iframe><div align=\"center\"><a href=\"#\" class=\"close\">Закрыть окно</a></div>');
	//$('#div_orderform').fadeIn();
});

$('.orderbutton').simpleDialog({
  showCloseLabel: false,							   
  width: 510,
  height: 630
});


$('#orderbutton_individual').simpleDialog({
  showCloseLabel: false,							   
  width: 510,
  height: 630
});

	
});