﻿// JScript File

function details(id)
{
window.location = ('/film-details/' + id + '.aspx');
}

function IMG2_onclick() {

document.cookie = 'menu=3; path=/';
window.location = ('/Default18plus.aspx');
}

window.addEvent('domready', function(){
			//-vertical
			
			var mySlidefilm = new Fx.Slide('filmtest');
			
			var mySlidedoc = new Fx.Slide('doctest');
           
			var name = 'menu'
			var start = document.cookie.indexOf(name + "=");
 
	          if(start == -1){ 
	        mySlidefilm.slideIn();
	        mySlidedoc.slideOut();
	 }
	        start = document.cookie.indexOf("=",start) + 1;
	        var end = document.cookie.indexOf(";",start);

	        if( end == -1 )	end = document.cookie.length;
	 
	        var value = unescape(document.cookie.substring(start,end));
  
            if (value == '1')
            {
                mySlidedoc.slideOut();
		        mySlidefilm.slideIn();
            }
            if (value == '2')
            {
                mySlidefilm.slideOut();
	       	    mySlidedoc.slideIn();
            }
            if (value == '3')
            {
                mySlidefilm.slideIn();
	       	    mySlidedoc.slideOut();
            }
			
			
			
			
			
			$('film').addEvent('click', function(e){
				e = new Event(e);
				document.cookie = 'menu=1; path=/';
				mySlidedoc.slideOut();
				mySlidefilm.slideIn();
				
				e.stop();
			});	
			$('docu').addEvent('click', function(e){
				e = new Event(e);
				document.cookie = 'menu=2; path=/';
				mySlidefilm.slideOut();
				mySlidedoc.slideIn();
				
				e.stop();
			});	
			
		
		
	
		}); 
		
/*		
function IMG1_onclick() {
document.getElementById('ctl00_DataListdoc').style.display = 'block';
document.getElementById('ctl00_DataListfilm').style.display = 'none';
document.cookie = 'menu=1; path=/';
}

function IMG3_onclick() {
document.getElementById('ctl00_DataListdoc').style.display = 'none';
document.getElementById('ctl00_DataListfilm').style.display = 'block';
document.cookie = 'menu=2; path=/';
}




function checkmenu1()
{
  
   var x = document.cookie ('menu' + "=" + escape( value )) ;

   if (x ==1)
   {
   document.getElementById('DataListdoc').style.display = 'block';
   document.getElementById('DataListfilm').style.display = 'none';
   }
   if (x ==2)
   {
   document.getElementById('DataListdoc').style.display = 'none';
   document.getElementById('DataListfilm').style.display = 'block';
   }
}

function checkmenu(name) 
{
	var start = document.cookie.indexOf(name + "=");

	if(start == -1) return null;
	 
	start = document.cookie.indexOf("=",start) + 1;
	var end = document.cookie.indexOf(";",start);

	if( end == -1 )	end = document.cookie.length;
	 
	var value = unescape(document.cookie.substring(start,end));
     
      if (value == '1')
      {
        document.getElementById('ctl00_DataListdoc').style.display = 'block';
        document.getElementById('ctl00_DataListfilm').style.display = 'none';
       }
       if (value == '2')
       {
        document.getElementById('ctl00_DataListdoc').style.display = 'none';
        document.getElementById('ctl00_DataListfilm').style.display = 'block';
       }
    
	return value;
}
*/
