/* 
	Name: Kinento effects script
	Author: Vanja Cosic 

*/

$(document).ready(function(){
	
	function load()
    {
        c1 = "info"
        c2 = "kinen"
        c3 = "to"
        c4 = "dk"
        // Fill in the addresses
        document.getElementById("email").innerHTML = "<a href=" + "mail" + "to:" + c1 + "@" + c2 + c3 + "." + c4 + ">" + c1 + "@" + c2 + c3 + "." + c4 + "</a>";
    }
    
    load();
	
	// Background stretch
	$.backstretch("img/bg.jpg");
		
	// Tab code
	$('.tabs a').click(function(){
		switch_tabs($(this));
	});
 
	switch_tabs($('.defaulttab'));
 
	
	// Prevent dragging of images
	$('img').bind('dragstart', function(event) { event.preventDefault(); });

});
 
// Tab function
function switch_tabs(obj)
{
	$('.tab-content').hide();
	$('.tabs a').removeClass("selected");
	var id = obj.attr("rel");
 
	$('#'+id).show(0);
	obj.addClass("selected");
}















