﻿$(document).ready(function(){ 
	// Заголовки
    //Cufon.replace('h1, h2, h3, h4, .style');
	
    // Галерея
	$("a[rel='gallery']").colorbox({slideshow:false});
	
    // Вызов форм по rel=action и id=action_id
	$("a[rel~='viewform']").live("click", function(event) { 
		var temp 	= (this.id).split("_");
		var action	= temp[0];
		var id 		= temp[1];		

		if (action=='order')
		{
			$.colorbox({width:"300px", inline:true, href:"#order_form"});
			$('#orderid').val(id);
		}	
		
		if (action=='reserve')
		{
			$.colorbox({width:"300px", inline:true, href:"#reserve_form"});
			$('#reserveid').val(id);
		}			
		
		return false;
	});	
});




