﻿$(document).ready(function(){
	
	// SHOW SYSTEM MESSAGES
	var url = document.URL;
	var flush = (url).split("?");
	if (flush[1]=='flush') {
		$('#sm').fadeIn('300');
		window.location = '#sm';
	}
	
	
	// SWITCH EVENT VIEW
	$('.termine .categories li a').click(function() {
		
		var filter = $(this).parents('li').attr('id');
		
		$('.categories li').attr('class','on');
		$(this).parents('ul').find('li').attr('class','off');
		$(this).parents('li').attr('class','on');
		
		$('#right .t-block').hide();
		$('#right .'+filter).fadeIn('300');
    });
    
	// ADD WEBSITE-PREFIX
	$('input#com_website').click(function() {
		var value = $(this).val();
		if (value == '') {
			$(this).val('http://');
		}
	});
	
	// REMOVE WEBSITE-PREFIX
	$('input#com_website').blur(function() {
		var value = $(this).val();
		if (value == 'http://') {
			$(this).val('');
		}
	});
	
	// REMOVE SYSTEM-MESSAGE
	$('.sm_body').click(function() {
		$(this).parent('#sm').fadeOut(500);
	});
    
	var profiles = {
		virbplayer:
		{
			height:350,
			width:560,
			status:1
		}
	};
	
	$('.popupwindow').popupwindow(profiles);
    

});