/* Main Scripts
 * 
 * Context menu scrolling
 * External links
 * Scroll to the top of the page
 * 
 * Author: exmedia.sk
 */
$(document).ready(function() {

	$('ul.sf-menu').superfish();
	$('ul.sf-branch-menu').superfish({autoArrows: true});

	$("a[href='#']").click(function(){
		return false;
	});

	// External links in new window
	$("a[href^='http://']").attr('target', '_blank');
	// Also form links
	$('form a.external').attr('target', '_blank');
	// Do not follow menu "pseudo" links (placeholders)
	$("a[href='#']").click(function(){
		return false;
	});

	$('.confirm').click(function() {
		var msg = $(this).attr('title');
		if ( confirm("Naozaj chcete "+msg+"?") )
			return true;

		return false;	
	});

	// Top of the page - link
	$('p.pagetop a').click(function(){
		$('html, body').animate( { scrollTop: 0 }, 200 );
		
		return false;
	});
});

