// JavaScript Document
$(document).ready(function(){
	// my code here
	$('.link').click(function(){
	$.modaldialog.success('Due to my busy schedule this area isn\'t available yet. Coming soon! Thank You for your patience! Regards, Edyta :)', { title: 'Coming Soon!' });						  
				});
	//
	$('.link2').click(function(){
	$.modaldialog.success('this is a example of jQuery modal dialog plug-in that I use on my website', { title: 'Modal Dialog Box' });						  
				});
	//
	$('.link3').click(function(){
	$.modaldialog.success('here will be an example of jquery plug-in used to detect users\' browser', { title: 'Detect Browser - Coming Soon!' });						  
				});
	//
	$('.link4').click(function(){
	$.modaldialog.success('NOTE: please use \'contact\' link on the main website to view an example of this form. thank you!', { title: 'go to main website' });						  
				});
	//
	$('.link5').click(function(){
	$.modaldialog.success('NOTE: please use \'multimedia\' link on the main website to view the movie. thank you!', { title: 'go to main website' });						  
				});
	//
	$('.link6').click(function(){
	$.modaldialog.success('NOTE: please use \'print\' &amp; \'print2\' links on the main website to view print publications. thank you!', { title: 'go to main website' });						  
				});
	//
	$('.copyright').click(function(){
	$.modaldialog.success('The contents of the web site are copyright &copy;2007-2009 by Edyta Jordan. <br>All Rights Reserved. <br>Some parts of the web site may contain text and/or images/files that are subject to the copyright rights of their providers. All rights are reserved to the respectful owners/companies. <br>These items are only used to showcase my personal portfolio. <br>In case of any questions please contact me by email: <a href="mailto:edyta@edytajordan.com">edyta@edytajordan.com</a>', { title: '&copy; Copyright Notice' });						  
				});
	//
$('.dynamicFlash').click(function(){
	$.modaldialog.success('NOTE: please use \'resume\', \'contact\' or \'resources\' links on the main website to view dynamically loaded content in flash. Used technologies: html for text content, css for styling, php for mail form. Also used asfunction to call actionscript functions through html files.', { title: 'go to main website' });						  
				});
//
$('.flashComponents').click(function(){
	$.modaldialog.success('NOTE: please use \'resume\', \'contact\' or \'resources\' links on the main website to view the use of components in flash.', { title: 'go to main website' });						  
				});
}); // end of document.ready - jQuery
//
//
/*  shortcut fo above document.ready...
$(function(){
	// my code here
	//
	//
}); // end of document.ready - jQuery
*/