/**
 * @author NessQuiick
 */

var sItemsTop = 0;
var sItemsBottom = 0;
var sIy = 99;
var aProps = {};

function initES()
{

        //scheduleMouseDownHandler();
        $('a[href^=#]').click(searchMouseDownHandler);
	$('a[href^=#]').click(scheduleMouseDownHandler);
	$('a[href^=#]').click(postMouseDownHandler);
	$('a[href^=#]').click(showMouseDownHandler);
}                            

function scheduleMouseDownHandler(e)
{
    	sItemsTop = parseFloat($('#schedule_items').css('margin-top'));
	sItemsBottom = parseFloat(sItemsTop) + parseFloat($('#schedule_items').css('height'));
	
	if(sItemsBottom < 0) trace('FOO');

	/*if($(this).html() == 'up') aProps['margin-top'] =  (sItemsTop - 500);
	if($(this).html() == 'down') aProps['margin-top'] =  (sItemsTop + 500);
	*/
	if($(this).html() == 'up') aProps['margin-top'] =  (sItemsTop + 500);
	if($(this).html() == 'down') aProps['margin-top'] =  (sItemsTop - 500);

	//$('#schedule_items').animate(aProps, 750);
	
	$('#schedule_items').animate(aProps, 750);
	//$('.schedule_item 04:00').scroll();

}

function searchMouseDownHandler(e)
{

    	sItemsTop = parseFloat($('#search_items').css('margin-top'));
	sItemsBottom = parseFloat(sItemsTop) + parseFloat($('#search_items').css('height'));
	
	if(sItemsBottom < 0) trace('FOO');

	/*if($(this).html() == 'up') aProps['margin-top'] =  (sItemsTop - 500);
	if($(this).html() == 'down') aProps['margin-top'] =  (sItemsTop + 500);
	*/
	if($(this).html() == 'up') aProps['margin-top'] =  (sItemsTop + 500);
	if($(this).html() == 'down') aProps['margin-top'] =  (sItemsTop - 500);

	//$('#schedule_items').animate(aProps, 750);
	
	$('#search_items').animate(aProps, 750);
	//$('.schedule_item 04:00').scroll();

}

function postMouseDownHandler(e)
{
	sItemsTop = parseFloat($('#post_items').css('margin-top'));
	sItemsBottom = parseFloat(sItemsTop) + parseFloat($('#post_items').css('height'));
	
	if(sItemsBottom < 0) trace('FOO');

	/* if($(this).html() == 'up') aProps['margin-top'] =  (sItemsTop - 500);
	if($(this).html() == 'down') aProps['margin-top'] =  (sItemsTop + 500); */
	if($(this).html() == 'up') aProps['margin-top'] =  (sItemsTop + 500);
	if($(this).html() == 'down') aProps['margin-top'] =  (sItemsTop - 500);

	//$('#schedule_items').animate(aProps, 750);
	
	$('#post_items').animate(aProps, 750);
	//$('.schedule_item 04:00').scroll();

}

function showMouseDownHandler(e)
{
  sItemsTop = parseFloat($('#show1_items').css('margin-top'));
	sItemsBottom = parseFloat(sItemsTop) + parseFloat($('#show1_items').css('height'));
	
	if(sItemsBottom < 0) trace('FOO');

	/*if($(this).html() == 'up') aProps['margin-top'] =  (sItemsTop - 500);
	if($(this).html() == 'down') aProps['margin-top'] =  (sItemsTop + 500);*/
	if($(this).html() == 'up') aProps['margin-top'] =  (sItemsTop + 500);
	if($(this).html() == 'down') aProps['margin-top'] =  (sItemsTop - 500);

	//$('#schedule_items').animate(aProps, 750);
	
	$('#show1_items').animate(aProps, 750);
	//$('.schedule_item 04:00').scroll();

}
