var jq = jQuery.noConflict();
jq(document).ready(function(){
	jq("#tmgallery > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
    jq("a[rel^='prettyPhoto']").prettyPhoto({
			slideshow: false, /* false OR interval time in ms */
			show_title: false, /* true/false */
			allow_resize: false, /* Resize the photos bigger than viewport. true/false */
			theme: 'light_rounded', /* light_rounded / dark_rounded / light_square / dark_square / facebook */
			horizontal_padding: 20, /* The padding on each side of the picture */
			modal: false, /* If set to true, only the close button will close the window */
			deeplinking: false, /* Allow prettyPhoto to update the url to enable deeplinking. */
			social_tools: false /* html or false to disable */
		});
	jq("area[rel^='prettyPhotoI']").prettyPhoto({
			slideshow: false, /* false OR interval time in ms */
			show_title: false, /* true/false */
			allow_resize: false, /* Resize the photos bigger than viewport. true/false */
			theme: 'light_rounded', /* light_rounded / dark_rounded / light_square / dark_square / facebook */
			horizontal_padding: 20, /* The padding on each side of the picture */
			modal: false, /* If set to true, only the close button will close the window */
			deeplinking: false, /* Allow prettyPhoto to update the url to enable deeplinking. */
			social_tools: false /* html or false to disable */
		});
	});
