﻿$(function()
{
	//topmenu
	$("#categories").flash({ src: 'swf/top.swf', width: 480, height: 80, version: 8, background: '#000000',  wmode: 'transparent' });
			
	//gallery functionality	
	$("div.imageGallery a").click(function(event)
	{  		
		var imageSource = $(this).attr("href");
		var id =  $(this).attr("rel");		
		
		showImage(imageSource, id);
		
		event.preventDefault();
		
	});	
	
	$("#menuClientarea").colorbox({scrolling:false, width: 270});
});

