function include_html(filename,divid) { 
$.ajax({ url: 'http://www.karlson-tourism.ru/win1251-converter.php?filepath='+filename, context: document.body, success: function(data){
$('#'+divid).html(data);
}}); 
}

jQuery.fn.center = function () {
    this.css("position","absolute");
    this.css("top", ( $(window).height() - this.height() ) / 2+$(window).scrollTop() + "px");
    this.css("left", ( $(window).width() - this.width() ) / 2+$(window).scrollLeft() + "px");
    return this;
}


$(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");
		}
	   
    });

$("#partb").hide();
$("#button2").click(function() { $("#parta").hide(); $("#partb").show(); });
$("#button1").click(function() { $("#partb").hide(); $("#parta").show(); });

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


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


$('a#orderbutton_individual').colorbox({width:"610px", height:"750", iframe:true}); 


$('.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/orderform2_individual.php?ordertitle='+ordertitle+'\"></iframe><div align=\"center\"><a href=\"#\" class=\"orderform-close\">Закрыть окно</a></div>');
	$('#div_orderform').show();
	$('#div_orderform').center();
	$('a.orderform-close').click(function()	{	$('#div_orderform').hide(); });
});

});
