function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=700,height=500');");
}

$(document).ready(function()
{
	$('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
	$('a.slideshow_lightbox').lightBox({fixedNavigation:true});
	
	$('div.slideshow').cycle(
	{ 
		fx:     'fade', 
		speed:  0,
		delay:5000,
		pager:'.slideshownav .nav'
	});
	
	$('.slideshow_pause').click(function() { 
    $('div.slideshow').cycle('pause'); 
	});
	
	$('.slideshow_play').click(function() { 
    $('div.slideshow').cycle('resume'); 
	});
	

	//$f("player", "../flowplayer-3.1.1.swf").playlist(".playlist",{playingClass: 'active',pausedClass: 'active',progressClass:'active',loop:false, playOnClick: true});
	
	$('.header_students_videos .tab:first').removeClass('tab').addClass('tab_active');
	
	$('.students').load('hometabs.php?eid='+$('.header_students_videos .tab_active a').attr('rel'));
	
	$('.header_students_videos .tab, .header_students_videos .tab_active').click(function() 
	{ 
    	$('.header_students_videos .tab_active').removeClass('tab_active').addClass('tab');
		$(this).removeClass('tab').addClass('tab_active');
		$('.students').load('hometabs.php?eid='+$('.header_students_videos .tab_active a').attr('rel'));
	});
	
	$('#home_tab_komersiante').click(function()
	{
		$('#home_contents_komersiante').load('hometabs2.php?tab=komersiante');
		$('#home_main_tab_komersiante').removeClass('tab').addClass('tab_active');
		$('#home_main_tab_oferta').removeClass('tab_active').addClass('tab');
	});
	$('#home_tab_oferta').click(function()
	{
		$('#home_contents_komersiante').load('hometabs2.php?tab=oferta');
		$('#home_main_tab_oferta').removeClass('tab').addClass('tab_active');
		$('#home_main_tab_komersiante').removeClass('tab_active').addClass('tab');
	});
	
	$('.playlist a, .playlist a.active').click(function(){
		$('.playlist a.active').removeClass('active');	
		$(this).addClass('active');
		$('.video').load($('.playlist a.active').attr('href'));
		return false;
	});
	
	$('.video').load($('.playlist a.active').attr('href'));
	$('#home_contents_komersiante').load('hometabs2.php?tab=oferta');	
	
});

