$(document).ready(function(){
	$("a[rel^='prettyPhoto']").prettyPhoto({
		allow_resize: true, /* Resize the photos bigger than viewport. true/false */
		default_width: 500,
		default_height: 344,
		theme: 'light_square', /* light_rounded / dark_rounded / light_square / dark_square / facebook */
		overlay_gallery: false /* If set to true, a gallery will overlay the fullscreen image on mouse over */
	});

	$("a[rel^='prettyPopin']").prettyPopin({
		width:320,
		height: 310,
		loader_path: 'img/prettyPopin/loader.gif', /* path to your loading image */
		callback : function(){
				//alert('Thank you for you query.');
			}
	});

	$("ul.projects").prettyGallery({
		itemsPerPage : 3,
		animationSpeed : 'slow', /* fast/normal/slow */
		navigation : 'bottom',  /* top/bottom/both */
		of_label: ' of ', /* The content in the page "1 of 2" */
		previous_title_label: 'Previous page', /* The title of the previous link */
		next_title_label: 'Next page', /* The title of the next link */
		previous_label: 'Previous', /* The content of the previous link */
		next_label: 'Next' /* The content of the next link */
	});

	$(function(){
		$('#tweets').tweetable({username: 'misodigital', time: false, limit: 3, replies: true, position: 'append'});
	});
});

